home *** CD-ROM | disk | FTP | other *** search
- /* f p u t c
- *
- * This is putc wrapped inside a function. This behaves like
- * putc but runs more slowly. It takes less space per invocation
- * and its name can be passed as an argument to a function.
- *
- * The function returns the character output on success and
- * EOF on failure.
- *
- * Patchlevel 1.0
- *
- * Edit History:
- */
-
- #include "stdiolib.h"
-
- /*LINTLIBRARY*/
-
- int fputc(ch, iop)
-
- int ch;
- FILE *iop;
-
- {
- return putc(ch, iop);
- }
-
-